home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / activestate_perl.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  73 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # Script audit and contributions from Carmichael Security <http://www.carmichaelsecurity.com>
  5. #      Erik Anderson <eanders@carmichaelsecurity.com>
  6. #      Added link to the Bugtraq message archive
  7. #
  8. # See the Nessus Scripts License for details
  9. #
  10.  
  11. if(description)
  12. {
  13.    script_id(11007);
  14.    script_version ("$Revision: 1.7 $");
  15.    name["english"] = "ActiveState Perl directory traversal";
  16.    script_name(english:name["english"]);
  17.  
  18.    desc["english"] = "
  19. It is possible to execute arbitrary commands on the remote
  20. server by using ActiveState's perl.
  21.  
  22. Solution : Upgrade to the latest version
  23.  
  24. Reference : http://online.securityfocus.com/archive/1/149482
  25.  
  26. Risk factor : High";
  27.  
  28.  
  29.    script_description(english:desc["english"]);
  30.  
  31.    summary["english"] = "Determines if ActivePerl is vulnerable";
  32.    script_summary(english:summary["english"]);
  33.  
  34.    script_category(ACT_ATTACK);
  35.  
  36.    script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison");
  37.    script_family(english:"CGI abuses");
  38.    script_dependencie("find_service.nes", "http_version.nasl");
  39.    script_require_ports("Services/www", 80);
  40.    exit(0);
  41. }
  42.  
  43.  
  44. #
  45. # The code starts here
  46.  
  47. include("http_func.inc");
  48.  
  49. port = get_http_port(default:80);
  50.  
  51.  
  52. if(!get_port_state(port))exit(0);
  53.  
  54. sig = get_kb_item("www/hmap/" + port + "/description");
  55. if ( sig && "IIS" >!< sig ) exit(0);
  56.  
  57. quote = raw_string(0x22);
  58.  
  59. item = string("/.", quote, "./.", quote,  "./winnt/win.ini%20.pl");
  60. req = http_get(item:item, port:port);
  61.  
  62. soc = http_open_socket(port);
  63. if(!soc)exit(0);
  64.  
  65. send(socket:soc, data:req);
  66. r = http_recv(socket:soc);
  67. http_close_socket(soc);
  68. if("Semicolon seems to be missing at" >< r)
  69. {
  70.  security_hole(port);
  71. }
  72.